home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / misc / INSTALL.SH < prev    next >
Linux/UNIX/POSIX Shell Script  |  2000-03-25  |  1KB  |  40 lines

  1. #!/bin/sh
  2. #
  3. # To INSTALL SmallEiffel on UNIX like platforms (including LINUX).
  4. #
  5. # If you have the gcc compiler, simply run this script.
  6. #
  7. sed=${SmallEiffel:=1}
  8. if [ ${sed} = 1 ];  then 
  9.    echo Please set the environment Variable \'SmallEiffel\' with
  10.    echo the absolute path of file SmallEiffel/sys/system.se
  11.    exit 1
  12. fi
  13. if [ -d ${SmallEiffel} ]; then 
  14.    echo Since release -0.79 the value of the environment
  15.    echo variable SmallEiffel should be the absolute path of
  16.    echo file SmallEiffel/sys/system.se
  17.    echo Trying to fix this automatically.
  18.    SmallEiffel=${SmallEiffel}/sys/system.se
  19. fi
  20. if [ ! -f ${SmallEiffel} ]; then
  21.    echo File ${SmallEiffel} not found.
  22.    echo Please check the value of the environment Variable
  23.    echo \'SmallEiffel\' wich must be the absolute path of 
  24.    echo the file SmallEiffel/sys/system.se
  25.    exit 1
  26. fi
  27. SE=`dirname $SmallEiffel`
  28. SE=`dirname $SE`
  29. if [ -f ${SE} ]; then
  30.    echo ${SE} "not found."
  31.    exit 1
  32. fi
  33. echo "Running the new installation procedure :"
  34. echo "    " cd ${SE}
  35. echo "    " make
  36. echo "    "
  37. cd ${SE}
  38. make
  39. echo Done.
  40.